home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part2 / 10685 < prev    next >
Encoding:
Text File  |  1996-08-05  |  822 b   |  37 lines

  1. Path: dish.news.pipex.net!pipex!dircon!usenet
  2. From: Rob and Sylvia Worsnop <gillesp@dircon.co.uk>
  3. Newsgroups: comp.lang.c++
  4. Subject: Namespaces
  5. Date: 9 Mar 1996 10:12:38 GMT
  6. Organization: Direct Connection
  7. Message-ID: <4hrlim$4b3@newsgate.dircon.co.uk>
  8. NNTP-Posting-Host: gw2-159.pool.dircon.co.uk
  9. Mime-Version: 1.0
  10. Content-Type: text/plain; charset=us-ascii
  11. Content-Transfer-Encoding: 7bit
  12. X-Mailer: Mozilla 1.1N (Windows; I; 16bit)
  13.  
  14. I've just tried to incorporate namespaces into my VC4 project
  15. and am having some problems.
  16.  
  17. If I have the following in a header file....
  18.  
  19. namespace A
  20. {
  21. class B
  22. {
  23. public:
  24.   B();    
  25. };
  26. }
  27.  
  28. .. what should my cpp file look like?
  29.  
  30. There seem to be a number of different ways to skin the cat all of
  31. which, so far, have conflicted with MFC serialization.
  32.  
  33. If you can help please e-mail me.
  34.  
  35. Rob.
  36.  
  37.